Arrays and Linked Lists
Back to Home
01. Collections
02. Lists
03. Arrays
04. Strings
05. Linked Lists Introduction
06. Linked Lists Continued
07. Implement a Linked List
08. Types of Linked Lists
09. Linked List Practice
10. Reverse a Linked List
11. Loop Detection
12. Flatten a Nested Linked List
13. Add One
14. Duplicate Number
15. Max Sum Subarray
16. Pascal's Triangle
17. Even After Odd
18. Skip i, delete j
19. Swap Nodes
20. Interlude
Back to Home
02. Lists
Lists
Properties of lists
As Brynn described, lists:
Have an
order
(so you can say things like "give me the 3rd item in the list")
Have
no fixed length
(you can add or remove elements)
Next Concept